home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / init.d / hotplug < prev    next >
Text File  |  2006-05-01  |  1KB  |  35 lines

  1. #!/sbin/runscript
  2. # Copyright 1999-2004 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. # $Header: /var/cvsroot/gentoo-x86/sys-apps/hotplug/files/hotplug.rc.empty,v 1.3 2005/01/27 18:29:26 wolf31o2 Exp $
  5.  
  6. #
  7. # nothing here anymore. Please use the coldplug package if you really want to
  8. # load modules for devices that are discovered by your kernel before init runs.
  9. #
  10. # However, please realize that if you have any problems, the developers
  11. # recommend just using the modules.autoload functionality to handle this in a
  12. # much simpler manner.
  13. #
  14. # Comments, flames, and fine beer should be directed at gregkh@gentoo.org
  15. #
  16.  
  17. depend() {
  18.     need modules
  19. }
  20.  
  21. start () {
  22.     # just verify that people build their kernel with hotplug support.
  23.     if [ ! -f /proc/sys/kernel/hotplug ] ; then
  24.         eerror "CONFIG_HOTPLUG not enabled for this kernel!"
  25.         return 1
  26.     fi
  27.     # This unpacks any firmware tarballs.  Used for LiveCD.
  28.     if [ -e /lib/firmware.tar.bz2 ]
  29.     then
  30.         ebegin "Unpacking hotplug firmware"
  31.         tar xjf /lib/firmware.tar.bz2 -C /lib/firmware
  32.         eend 0
  33.     fi
  34. }
  35.